home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 May
/
CMCD0504.ISO
/
Software
/
Freeware
/
Programare
/
dspack
/
DSPACK231.exe
/
{app}
/
Demos
/
D6-D7
/
PlayWin
/
SelectURL.pas
< prev
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2002-04-07
|
412 b
|
28 lines
unit SelectURL;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TFormSelectURL = class(TForm)
btOK: TButton;
btCancel: TButton;
URL: TEdit;
private
{ DΘclarations privΘes }
public
{ DΘclarations publiques }
end;
var
FormSelectURL: TFormSelectURL;
implementation
{$R *.dfm}
end.